home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / p / pov / povlisti.ngs / diver1.pov < prev    next >
Encoding:
Text File  |  1992-07-23  |  1.4 KB  |  58 lines

  1. #include "colors.inc"
  2. #include "shapes.inc"
  3. #include "textures.inc"
  4. #include "shapesq.inc"
  5. #include "tex.inc"
  6. #include "finhead.inc"
  7. #include "mound.inc"
  8.  
  9. camera {
  10. location <0 30 -210> direction <0 0 1.8> 
  11. up <0 1 0> right <1.3 0 0> look_at <0 10 0> }
  12.  
  13. //----- Light 1
  14. object { light_source { <-150 450 -250> color White }}
  15.  
  16. //----- Light 2
  17. object { light_source { <700 450 -850> color White }}
  18.  
  19. //----- Light 3
  20. object { light_source { <-200 10 -50> color White }}
  21.  
  22.  
  23. max_trace_level 3
  24.  
  25. //-------- World
  26. #declare WORLD =
  27. object {
  28. quadric { Sphere scale <1 1 1> }
  29. texture {
  30. gradient <0 1 0>
  31. color_map {
  32. [0 0.2 color red 1.0 green 0.751 blue 1.0   color red 0.69 green 0.44 blue 0.69 ] 
  33. [0.2 0.3 color red 0.69 green 0.44 blue 0.69   color red 0.41 green 0.16 blue 0.62 ] 
  34. [0.3 0.4 color red 0.41 green 0.16 blue 0.62    color Black ] 
  35. [0.4 1.0 color Black    color Black ] 
  36. }
  37. scale <1 1.3 1> ambient 1.0 diffuse 0.0 
  38. }
  39.  
  40. scale <8000 2000 8000> translate <0 -500 0> rotate <0 0 0> 
  41. }
  42.  
  43.  
  44. //----- water level
  45. #declare WATER =
  46. object {
  47. plane { <0 1 0> -20.5 }
  48. texture { Water color CadetBlue reflection 0.7 ripples 0.3 
  49. frequency 0.03 phong 1 ambient 0.3 diffuse 0.6 phong_size 50
  50. }}
  51.  
  52.  
  53. object { WORLD rotate <0 0 30> rotate <20 0 0> }
  54. object { WATER }
  55. composite { FIN_HEAD translate <0 32 0> rotate <0 25 0> }
  56. composite { MOUNDS translate <0 -30 0> }
  57.  
  58. ə